In [2]:
from IPython.display import HTML
In [ ]:
HTML('''<script>
code_show=true;
function code_toggle() {
if (code_show){
$('div.input').hide();
} else {
$('div.input').show();
}
code_show = !code_show
}
$( document ).ready(code_toggle);
</script>
The raw code for this IPython notebook is by default hidden for easier reading.
To toggle on/off the raw code, click <a href="javascript:code_toggle()">here</a>.''')
위 코드를 입력하면 toggle 이 on/off
터미널에서 jupyter nbconvert ~~~~ --to html을 치면 html파일로 떨어짐
In [ ]: